HTML is the standard markup language for creating Web pages.
HTML stands for Hyper Text Markup Language.
HTML describes the structure of a Web page.
HTML consists of a series of elements.
HTML elements are represented by tags.
HTML elements tell the browser how to display the content.
Browsers do not display the HTML tags, but use them to render the content of the page.
Chapter 2
HTML is not case-sensitive while C language is.
C programs are needed to be compiled before running but HTML program is not compiled using any compiler,
browser show as it is what is written. Be careful while writing program in HTML.
HTML program consists of tags only either it is empty or full. while C program consists of diffferent functions
,loops,statements etc.
Chapter 3
The html element defines the whole document.
The body element defines the document body.
The h1 element defines a heading.
The p element defines a paragraph.
HTML elements with no content are called empty elements.
Chapter 4
All HTML elements can have attributes.
The title attribute provides additional "tool-tip" information.
The href attribute provides address information for links.
The width and height attributes provide size information for images.
The alt attribute provides text for screen readers.
Chapter 5
Use style attribute for styling HTML elements.
Use background-color for background color.
Use color for text colors.
Use font-family for text fonts.
Use font-size for text sizes.
Use text-align for text alignment.
Chapter 6
Use the HTML img element to define an image.
Use the HTML src attribute to define the URL of the image.
Use the HTML alt attribute to define an alternate text for an image, if it cannot be displayed.
Use the HTML width and height attributes to define the size of the image.
Use the CSS width and height properties to define the size of the image (alternatively).
Use the CSS float property to let the image float.
Use the image tag map to define an image-map.
Use the image tag area to define a clickable area inside an image-map.
Use the image tag picture to define a container for multiple image resources.